home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 6 / MacMania 6.toast / / Tools&Utilities / ProMaker-Utils-0.9.4 / Comments and Format < prev    next >
Text File  |  1997-06-04  |  627b  |  29 lines

  1. // COMMENTS:
  2. // You  can add comments to your documents:
  3. // Put two slashes ("/") before the comment text,
  4. // everything after this is ignored.
  5.  
  6. Allow User Abort [OFF]  // example comment
  7.  
  8. // EMPTY LINES
  9. // You may also add empty lines to improve readability:
  10.  
  11. Set Error Capture [On]
  12.  
  13. // FORMATTING
  14. // You may begin a line with spaces, to show a loop for example. 
  15. // An example script showing this:
  16.  
  17. Enter Browse Mode []
  18. // Make sure that this is A4 !
  19. Page Setup [Restore, No dialog]
  20. Go to Record/Request/Page [First]
  21.  
  22. Loop
  23.    Exit Loop If []
  24.    Find All
  25.    Unsort
  26.    Print []
  27. End Loop
  28.  
  29. Perform Script [Sub-scripts, <unknown>]